home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / newmat03.lha / newmat03 / class.txt < prev    next >
Text File  |  1993-08-08  |  2KB  |  92 lines

  1. //$$ class.txt                                list of classes
  2.  
  3.  
  4. List of classes in newmat04
  5. ===========================
  6.  
  7.  
  8. BOOL                            Boolean class
  9.  
  10. ControlWord                     int interpreted as sequence of bits
  11.  
  12. LogAndSign                      return from determinant routine
  13.  
  14. BaseMatrix                      base of all matrix classes
  15.  |
  16.  +-GeneralMatrix                base of matrix classes accessible to a user
  17.  |  |
  18.  |  +-Matrix                    rectangular matrix
  19.  |  |  |
  20.  |  |  +-RowVector
  21.  |  |  |
  22.  |  |  +-ColumnVector
  23.  |  |  |
  24.  |  |  +-nricMatrix             for connecting with "Numerical Recipes in C"
  25.  |  |
  26.  |  +-SymmetricMatrix
  27.  |  |
  28.  |  +-UpperTriangularMatrix
  29.  |  |
  30.  |  +-LowerTriangularMatrix
  31.  |  |
  32.  |  +-DiagonalMatrix
  33.  |  |
  34.  |  +-CroutMatrix               Crout decomposition of a rectangular matrix
  35.  |  
  36.  +-ReturnMatrix                 matrix to be returned from function
  37.  |
  38. .|..............................Classes below here are not intended for
  39.  |                              user access.
  40.  |
  41.  +-AddedMatrix                  class of A + B
  42.  |  |
  43.  |  +-MultipliedMatrix          class of A * B
  44.  |  |
  45.  |  +-SolvedMatrix              class of A.i() * B
  46.  |  |
  47.  |  +-SubtractedMatrix          class of A - B
  48.  |
  49.  +-ShiftedMatrix                class of A + f
  50.  |  |
  51.  |  +-ScaledMatrix              class of A * f
  52.  |  
  53.  +-NegatedMatrix                class of -A
  54.  |  |
  55.  |  +-TransposedMatrix          class of A.t()
  56.  |  |
  57.  |  +-InvertedMatrix            class of A.i()
  58.  |  |
  59.  |  +-RowedMatrix               class of A.CopyToRow()
  60.  |  |
  61.  |  +-ColedMatrix               class of A.CopyToColumn()
  62.  |  |
  63.  |  +-DiagedMatrix              class of A.CopyToDiagonal()
  64.  |  |
  65.  |  +-MatedMatrix               class of A.CopytoMatrix(r,c)
  66.  |  |
  67.  |  +-GetSubMatrix              class of A.SubMatrix(fr,lr,fc,lc)
  68.  |  
  69.  +-ConstMatrix                  class of A.c()
  70.  
  71. FloatingPointPrecision          contains floating point precision constants
  72.  
  73. SymmetricEigenAnalysis          not used yet
  74.  
  75. MatrixRowcol                    row and column classes for general matrix
  76.  |
  77.  +-MatrixRow
  78.  |
  79.  +-MatrixCol
  80.  
  81. RectMatrixRowCol                row and column classes for rectangular matrix
  82.  |
  83.  +-RectMatrixRow
  84.  |
  85.  +-RectMatrixCol
  86.  |
  87.  +-RectMatrixDiag
  88.  
  89. ExeCounter                      counts number of entries to a piece of code
  90.  
  91. MatrixType                      type of a matrix
  92.